Comparsion of Variable Selection Methods Using Simulated Data

Joshua O'Cain

In this experiment, we will compare the effectiveness of Ridge, Lasso, Elastic Net using GridSearchCV on a simulated toeplitz-corelated dataset.


In [1]:
# general imports
import numpy as np
import pandas as pd
from math import ceil
from scipy import linalg
from sklearn.linear_model import LinearRegression, Ridge, Lasso, ElasticNet
from sklearn.metrics import mean_squared_error
from sklearn.datasets import make_spd_matrix
import matplotlib.pyplot as plt
from scipy.optimize import minimize
from scipy.linalg import toeplitz
from matplotlib import pyplot
from sklearn.model_selection import GridSearchCV
from sklearn.model_selection import KFold
from sklearn.base import BaseEstimator, RegressorMixin
from numba import njit
from datetime import datetime

Variable Selection

Variable Selection is a tool used in regression models to deal with high dimensionality or multicolinear data. In such cases, feature interactions or insufficient data can prevent

Multiple Linear Regression relies on the model

$$\large Y = X\beta + \sigma \epsilon $$

for some feature set $X$ and a corresponding target set $Y$. This model accepts some noise, provided it can be modeled by a random normal variable $\eta$ scaled by some factor sigma. We can calculate an expected value of the coefficents vector $\beta$, denoted $\hat{beta}$, using the following equation:

$$\large \hat{\beta} = (X^tX)^{-1}X^tY $$

This intrinsically assumes that the matrix $X^tX$ is invertible, which may not be true in practice. A simple way to check is to see if the determinant of a matrix is zero. If this is not the case, then there are one or more linearly dependent columns

Ridge

Ridge regualarization, also known as Tikhonov regualarization, employs the Euclidean length or the L2 norm for regularization. For a vector $\beta$, the L2 norm is defined by

$$\large ||\beta||_2 = \sum_i{\beta_i^2} $$

Ridge regularization constrains the coefficient (weight) learning process by attempting to minimize the following cost function:

$$ \frac{1}{n}\sum_{i}^M\left(y_i-\sum\limits_j^p\beta_ix_{ij}\right)^2 + \alpha \sum\limits_{j}^p\beta_j^2 $$

The factor $\alpha$ is a adjusts the effect of the penalization, and can be adjusted to a particular data set and application. Note that, in the $\alpha = 0$ case, the cost function reduces to Sum Squared Residual Error, which simply results in normal OLS regression. Large weights results in a high L2 norm, but a weak learning capacity caused by high penalization results in a weak model. Optimally, reducing the cost function forces a minimization the weights while maintaining good accuracy. Effective use of this model necessitates a balance between

Lasso

Lasso regularization operates in a method very similar to Ridge regression, but employs L1 distance instead of L2:

$$\large ||\beta||_1 = \sqrt{\sum_i{|\beta_i|}} $$

The cost function to minimize becomes the following:

$$ \frac{1}{n}\sum_{i}^M\left(y_i-\sum\limits_j^p\beta_ix_{ij}\right)^2 + \alpha \sum\limits_{j}^p\beta_j^2 $$

Though a L1 norm represents the magnitude of a vector, L2 is simply the sum of the weights. For a particular parameter in in $\beta$ $\beta_i$, its contribution to the L1 and L2 norm of $\beta$ can be shown below:

In [3]:
x = np.linspace(-10, 10, 100)
plt.figure(figsize = (12, 5))
plt.subplot(1, 2, 1)
plt.plot(x, x**2)
plt.xlabel('beta_i')
plt.title('L2')
plt.ylabel('Penalty')
plt.subplot(1, 2, 2)
plt.plot(x, np.abs(x))
plt.title('L1')
plt.show()

By extension, this also represents $\beta_i$'s contribution to the loss. Theoretically, as most of these methods, the cost function is a linear combination of the residuals and the $\beta$ penalty. The methods aim for the minima of that sum.

Elastic Net

Elastic Net regularization aims to combine the two using a relative weight hyperparameter $\lambda$:

$$ \frac{1}{n} \sum_{i} \left( y_i - \beta_i x_i \right)^2 + \alpha \left( \lambda \sum\limits_{j}|\beta_j| + ( 1 - \lambda) \sqrt{\sum\limits_{j}\beta_j} \right) $$

Here, $0 < \lambda < 1$. As before, $\alpha$ controls the strength of the $\beta$ penalty.

Square Root Lasso

Other recently developed options not included in this test include Square Root Lasso and SCAD. Square Root Lasso is similar to Lasso in that it uses the L2 norm of the weights in the cost function. However, here, the L2 norm is weighted much more heavily, as the residual term now has a square root around it:

$$ \sqrt{\frac{1}{n}\sum_{i}^M\left(y_i-\sum\limits_j^p\beta_ix_{ij}\right)^2} + \alpha \sum\limits_{j}^p\beta_j^2 $$

Like both Lasso and Ridge, the only hyperparameter here is $\alpha$.

class SQRTLasso(BaseEstimator, RegressorMixin): def __init__(self, alpha=0.01): self.alpha = alpha def fit(self, x, y): alpha=self.alpha @njit def f_obj(x,y,beta,alpha): n =len(x) beta = beta.flatten() beta = beta.reshape(-1,1) output = np.sqrt(1/n*np.sum((y-x.dot(beta))**2)) + alpha*np.sum(np.abs(beta)) return output @njit def f_grad(x,y,beta,alpha): n=x.shape[0] p=x.shape[1] beta = beta.flatten() beta = beta.reshape(-1,1) output = (-1/np.sqrt(n))*np.transpose(x).dot(y-x.dot(beta))/np.sqrt(np.sum((y-x.dot(beta))**2))+alpha*np.sign(beta) return output.flatten() def objective(beta): return(f_obj(x,y,beta,alpha)) def gradient(beta): return(f_grad(x,y,beta,alpha)) beta0 = np.ones((x.shape[1],1)) output = minimize(objective, beta0, method='L-BFGS-B', jac=gradient,options={'gtol': 1e-8, 'maxiter': 50000,'maxls': 25,'disp': True}) beta = output.x self.coef_ = beta def predict(self, x): return x.dot(self.coef_)

SCAD

Smoothly Clipped Absolute Deviations, or SCAD, is a method that is defined by it's first derivative as opposed to an objective function:

$$ p'= \lambda \left( I(\beta \le \lambda) + \frac{\alpha \lambda - \beta}{(\alpha - 1)\lambda}I(\beta \ge \lambda) \right) $$

The resultant penalty takes the following shape:

In [4]:
def scad_penalty(beta_hat, lambda_val, a_val):
    is_linear = (np.abs(beta_hat) <= lambda_val)
    is_quadratic = np.logical_and(lambda_val < np.abs(beta_hat), np.abs(beta_hat) <= a_val * lambda_val)
    is_constant = (a_val * lambda_val) < np.abs(beta_hat)

    linear_part = lambda_val * np.abs(beta_hat) * is_linear
    quadratic_part = (2 * a_val * lambda_val * np.abs(beta_hat) - beta_hat**2 - lambda_val**2) / (2 * (a_val - 1)) * is_quadratic
    constant_part = (lambda_val**2 * (a_val + 1)) / 2 * is_constant
    return linear_part + quadratic_part + constant_part

plt.figure(figsize = (6, 5))
plt.plot(x, scad_penalty(x, .1, 80))
plt.xlabel('beta_i')
plt.title('L2')
plt.ylabel('Penalty')
Out[4]:
Text(0, 0.5, 'Penalty')

The penalty becomes highly peaked near zero, and near-flat everywhere else. The two hyperparameters, $\lambda$ and $\alpha$, control the peaking region. $\lambda$ controls the size of the region, whereas $\alpha$ controls the height of the peak (really the height of the surrounding flat region, as the peak always approaches 0 at 0). This method is the sole example of "folded concave penalties" in this group; the rest are ammendments to the OLS loss and are therefore called "penalized least squares" functions.

Methods

Simulated Data

The data is simulated using an a priori weighting parameter $\beta*$. Though $\beta*$ contains 1,200 total values, only 27 are non-zero, setting a target for the variable selection methods. The data was generated using a random normal distribution where the features have a toeplitz correlation structure, further justifying the use of variable selection. The correlation strength is $\rho = 0.8$, and the standard deviation of the random normal variable is 3.5. 100 datasets were simulated, and each dataset had 200 observations.

In [4]:
# Setting Data Parameters
data = {'x':[],
        'y':[]}
for j in range(100):
    n = 200
    p = 1200
    rho = 0.8
    sigma = 3.5
    beta_star = np.concatenate(([1]*7,[0]*25,[0.25]*5,[0]*50,[0.7]*15,[0]*1098))

    #Generating Random Data
    np.random.seed(496)
    v = [rho**i for i in range(len(beta_star))]
    mu = [0]*p
    x = np.random.multivariate_normal(mu, toeplitz(v), size=n)
    y = np.matmul(x,beta_star).reshape(-1,1) + sigma*np.random.normal(0,1,size=(n,1))
    data['x'].append(x)
    data['y'].append(y)
print('X shape:', np.shape(data['x']))
print('Y shape:', np.shape(data['y']))
X shape: (100, 200, 1200)
Y shape: (100, 200, 1)

Selection Method Testing

To perform model testing, we used GridSearchCV to perform a grid search of the hyperparameter space to determine the best possible model. GridSearchCV performs a K-Fold validation during the CV search; though this lengthens the time the search takes, it ensures a more precise measurement of the model performance. Ten folds are used to validate the model, and GridSearchCV used mean squared error as the comparison statistic. This process uses ten folds. The hyperparameters and ranges of the grid search are tabulated below:

Model Hyperparameter Min Max No. Points
Ridge $\alpha$ 0 1 20
Lasso $\alpha$ 0.00001 1 20
Elastic Net $\alpha$ 0.00001 1 20
- $\lambda$ 0 1 20
SQRT Lasso $\alpha$ 0 1 20

Once the best model is determined, model again undergoes a K-Fold validation to calculate the average mean absolte error, L2 distance between the model wieghts and $\beta^*$, and the number of non-zero model weights. The whole test is repeated for each model on the 200 datasets.

In [5]:
def validate(model, x, y, nfolds, modelparams, rs = 496):
    grid = GridSearchCV(estimator=model,cv=nfolds,scoring='neg_mean_squared_error',param_grid=modelparams)
    grid.fit(x, y)
    PE = np.sqrt(mean_squared_error(y,grid.predict(x)))
    if len(grid.best_estimator_.coef_) == 1:
        coeflen = len(np.where(grid.best_estimator_.coef_[0] != 0)[0])
    else:
        coeflen = len(np.where(grid.best_estimator_.coef_ != 0)[0])
    l2 = linalg.norm(grid.best_estimator_.coef_[0] - beta_star)
    return coeflen, l2, PE
In [6]:
# Different Models Tested
models = {
    'Ridge': Ridge(),
    'Lasso': Lasso(),
    'Elastic Net': ElasticNet(max_iter = 10000),
    'Square Root Lasso': SQRTLasso()
}

#Hyperparamters to be evaluated in GridSearchCV
modelparams = {
    'Ridge': {'alpha': np.linspace(0.00001, 1, 20)},
    'Lasso': {'alpha': np.linspace(0.00001, 1, 20)},
    'Elastic Net': {'alpha': np.linspace(0.00001, 1, 20),
                    'l1_ratio': np.linspace(0, 1, 20)},
    'Square Root Lasso': {'alpha': np.linspace(0, 1, 20)}
}
In [ ]:
#Testing
results = {}
teststart = datetime.now()
for modeltype in models:
    modelstart = datetime.now()
    print('Begining validation of', modeltype, 'at ', modelstart.strftime('%H:%M:%S'))
    coeflen = []
    l2 = []
    PE = []
    for i in range(100):
        a, b, c = validate(models[modeltype], data['x'][i], data['y'][i], 10, modelparams[modeltype], 496)
        coeflen.append(a)
        l2.append(b)
        PE.append(c)
    results[modeltype] = [np.mean(coeflen), np.mean(l2), np.mean(PE)]
    print('Validation completed at ', datetime.now().strftime('%H:%M:%S'),
          ', took', (datetime.now() - modelstart).seconds, 's')
    print()
print('Full test completed at ', datetime.now().strftime('%H:%M:%S'),
          ', took', (datetime.now() - teststart).seconds, 's')
Begining validation of Ridge at  23:46:14
Validation completed at  23:47:52 , took 98 s

Begining validation of Lasso at  23:47:52
Validation completed at  23:51:57 , took 245 s

Begining validation of Elastic Net at  23:51:57
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.14475457587324, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 59.409259246441955, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.38304013263126, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 61.48190850493072, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 56.537318122485296, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.50339453669511, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.73434638520377, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.102811251595746, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 58.70857274556364, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 60.47962584458898, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.65274954142664, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 117.25376308961275, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.13397726890824, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 121.19707466084911, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 111.65609162538118, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.35380942847762, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.82736800770337, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 118.5928277329986, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 115.98257511110666, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 119.27826090462109, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.65011259211695, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 173.645436320413, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.37823350713478, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 179.28848667441628, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 165.45412816296732, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 170.68253239367644, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 177.4037667692758, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 175.58952280292536, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 171.91750680257914, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 176.5256963646212, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.23801498211697, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 228.674042510743, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.2169405795838, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 235.87135359253747, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 218.0095535101323, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 224.59508947337827, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 233.5633434080265, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 231.1888528237061, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 226.58932871364678, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 232.32594527676497, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.5063514369293, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 282.4201782482227, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 276.74017484339106, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 291.04752147882266, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 269.39289401448525, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 277.1848613838729, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 288.39479444990656, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 285.4766066919247, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 280.0668587550264, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 286.77120449141916, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.53543151728104, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 334.95654780434705, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.02857105954996, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 344.9075337482064, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 319.66807600718596, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 328.53496119641693, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 341.9773979730212, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 338.52985553320974, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 332.4126901421756, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 339.9436953466476, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.3973597442742, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 386.3490176094274, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.1546476428292, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 397.5323045492552, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 368.8932624812561, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 378.7197568316887, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 394.38238271624977, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 390.418148314939, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 383.6839621910191, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 391.9171488795946, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.15717137604213, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 436.65749540577673, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.1839036842245, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 448.9944896936154, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 417.12155829098265, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 427.8061166108291, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 445.6740503518655, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 441.20450549932303, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 433.9330117680906, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 442.758016084508, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.8737744475021, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 485.9366685174735, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.1757337463873, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 499.3596187994426, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 464.40160826661446, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 475.8544366368381, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 495.9107032605008, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 490.94625072876323, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 483.2079273653732, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 492.5264630690684, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.6007367972031, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 534.2366279462805, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.1841959012222, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 548.6870371640981, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 510.77810746114824, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 522.9194946706916, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 545.1454175232699, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 539.695711538735, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 531.5530231165791, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 541.2771961649267, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.3869480166418, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 581.6033992104519, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 568.2586606295654, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 597.0306947231252, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 556.292238797467, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 569.0511648088424, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 593.4266916068087, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 587.5008133463795, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 579.0092465254877, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 589.0601513101506, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.2771796850805, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 628.0793964545105, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 613.4443622873985, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.439811138987, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 600.9820503439465, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 614.2950195747793, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 640.7989943704783, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 634.4055858499482, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 625.6145309483927, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 635.9210741266863, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.3125622849489, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 673.7038129991353, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 657.7828703394363, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 690.9594398038065, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 644.8827820846193, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 658.6928402586185, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 687.3032308931291, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 680.4505970623927, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 671.4041017520289, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 681.9020112420552, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.530993402501, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 718.5129589061011, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 701.3124940989336, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 736.630948778768, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 688.0271501996333, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 702.2830519547493, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 732.9771407286128, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 725.6733271824742, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 716.4107434069793, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 727.0417289865927, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 769.9674888969666, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 762.5405541116126, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 744.0686320285578, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 781.4924330390398, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 730.4455954105231, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 745.1010963897274, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 777.8556402246209, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 770.1084921550179, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 760.6650334634378, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 771.3760722384882, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.6544864532303, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 805.81798409341, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 786.0840745583012, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 825.5790695628712, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 772.1665007832346, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 787.1797530377975, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 821.9711182421458, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.7883249273657, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 804.1955483109396, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 814.9382736128636, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.6221091561124, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 848.3745237803028, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 827.3892677228841, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.9234245953576, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 813.216383450735, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 828.5494170003789, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 865.3536928235817, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 856.7428209497818, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 847.0290447860541, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 857.759221195013, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.8983953218568, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 890.237534410545, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 868.0125436093188, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 911.5557206794467, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 853.6200639677343, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 869.238340538294, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 908.0314349525424, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 898.9999533068369, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 889.1906210152747, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 899.8676914610342, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.5094997089582, tolerance: 1.8663109213000768
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 931.4326372413177, tolerance: 1.8457169225849446
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 907.980322556494, tolerance: 1.7966010877908338
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 953.5040696709441, tolerance: 1.9184566083238042
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 893.4008164010429, tolerance: 1.8184727351901289
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 909.2728438903654, tolerance: 1.7861495881132248
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 950.030564437011, tolerance: 1.8385767782811877
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 940.58586193582, tolerance: 1.8560298758520632
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 930.7038593312525, tolerance: 1.8718912706364457
  model = cd_fast.enet_coordinate_descent(
C:\Users\2018j\anaconda3\lib\site-packages\sklearn\linear_model\_coordinate_descent.py:529: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations. Duality gap: 941.2905528023573, tolerance: 1.7726188969438308
  model = cd_fast.enet_coordinate_descent(
Validation completed at  14:00:25 , took 50907 s

Begining validation of Square Root Lasso at  14:00:25

Results

The results of the tests are shown below:

In [8]:
print('Model Results:')
for model in results:
    print(model)
    print('Mean Absolute Error:', results[model][2])
    print('No. of Kept Coefficients:', results[model][0])
    print('Distance from beta star L2 Norm:', results[model][1])
    print()
Model Results:
Ridge
Mean Absolute Error: 0.010754033328706841
No. of Kept Coefficients: 1200.0
Distance from beta star L2 Norm: 3.202859738958625

Lasso
Mean Absolute Error: 3.2527064417541522
No. of Kept Coefficients: 43.0
Distance from beta star L2 Norm: 7.67424828985641

Elastic Net
Mean Absolute Error: 3.3372422430712834
No. of Kept Coefficients: 47.0
Distance from beta star L2 Norm: 13.054806916507793

This is compared to the target values used to generate the data:

In [9]:
print('Data Generation Parameters')
print('No. of Coefficients:', len(beta_star))
print('No. of Non-Zero Coefficients:', np.sum(beta_star != 0))
Data Generation Parameters
No. of Coefficients: 1200
No. of Non-Zero Coefficients: 27

All the models were able to achieve a relatively good accuracy, passing a basic benchmark in model fitting ability. However, the way we would like to compare the models is in thier variable selection capacity - the ability to identify important features in the data. As such, we are looking for the models to approach predetermined number of significant coefficient. Though a couple of the models were able to identify that not all the parameters were significant, none of the models were able to successfully identify the correct number of significant parameters. Ridge performed by the worst, as it was unable to eliminate any parameters whatsoever. Lasso performed slightly better than Elastic Net, keeping on 43 variables. Interestingly, despite keeping all parameters, Ridge achieved both the lowest error and the lowest distance from $\beta^*$. The next closest weight vector was SCAD, which also kept all 1,200 parameters, though it had the highest error. There were some convergence issues with Elastic Net. Though I was able to increase the number of iterations to allow the model to train further, I was not able to reach convergence in a reasonable amount of iterations or time. Despite this, Elastic Net performed better than most of the other models. An attempt was made a using Square root Laso, but the validate method failed 15 h into the run.

Conclusions

Though the Ridge model seemed to perform the best in terms of distance to $\beta^*$ and error reduction, it did not successfully select the important variables in the model, leading me to believe that significant over fitting existed. Lasso broadly performed the best, eliminating a significant number of variables, producing a weight vector close to $\beta^*$, and achieving decent accuracy. While this was attempted and successful for Ridge, Lasso, and Elastic Net, it was infeasible due to CPU limits on my own machine and on Google Colab. I supect some of much of the time used in the validate function went to inefficient calculations of the error or number of significant coefficents. Taking a good look reducing the runtime of that function would go a long way towards making testing SCAD and Square Root Lasso Feasible

In [ ]: